home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / CIncludes / Strings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-11  |  1.0 KB  |  58 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        Strings.h
  3.  
  4.      Copyright:    © 1984-1994 by Apple Computer, Inc.
  5.                  All rights reserved.
  6.  
  7.      Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8.  
  9.      Bugs?:        If you find a problem with this file, send the file and version
  10.                  information (from above) and the problem description to:
  11.  
  12.                      Internet:    apple.bugs@applelink.apple.com
  13.                      AppleLink:    APPLE.BUGS
  14.  
  15. */
  16.  
  17. #ifndef __STRINGS__
  18. #define __STRINGS__
  19.  
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24. /*    #include <ConditionalMacros.h>                                */
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. #if GENERATINGPOWERPC
  31. #pragma options align=mac68k
  32. #endif
  33.  
  34. #ifdef __CFM68K__
  35. #pragma lib_export on
  36. #endif
  37.  
  38. #if OLDROUTINELOCATIONS
  39. extern StringPtr c2pstr(char *aStr);
  40. extern pascal StringPtr C2PStr(Ptr cString);
  41. extern char *p2cstr(StringPtr aStr);
  42. extern pascal Ptr P2CStr(StringPtr pString);
  43. #endif
  44.  
  45. #ifdef __CFM68K__
  46. #pragma lib_export off
  47. #endif
  48.  
  49. #if GENERATINGPOWERPC
  50. #pragma options align=reset
  51. #endif
  52.  
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56.  
  57. #endif /* __STRINGS__ */
  58.